One does not simply `make` Cargo
authorSteve Klabnik <steve@steveklabnik.com>
Mon, 17 Nov 2014 20:55:54 +0000 (15:55 -0500)
committerSteve Klabnik <steve@steveklabnik.com>
Tue, 18 Nov 2014 14:55:01 +0000 (09:55 -0500)
README fix with correct build instructions for building from source.

.gitignore
README.md

index ca38a825f464407af7aad3836ffa4b8bd5efc40b..dd674e8890dd847901f83316b707c5c6ebd673e8 100644 (file)
@@ -4,3 +4,4 @@
 /Makefile
 /config.mk
 src/doc/build
+rustc
index fc7fc857c635367ca5be80f34b8f6e6f5cd93903..45151e0c3fdab5b333747d71e8114f42a8ed4364 100644 (file)
--- a/README.md
+++ b/README.md
@@ -43,7 +43,8 @@ Cargo can then be compiled like many other standard unix-like projects:
 ```sh
 git clone https://github.com/rust-lang/cargo
 cd cargo
-./configure
+./.travis.install.deps.sh
+./configure --local-rust-root=`pwd`/rustc
 make
 make install
 ```